home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / configset.sql < prev    next >
Text File  |  2000-05-12  |  766b  |  20 lines

  1. /* RCSVER $Id: configset.sql,v 1.2 1999-02-24 11:08:51-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1998, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        configset
  6. * Date:        12/28/1998
  7. * memo:        Randy Wood
  8. * Description:    Create the configset table.  This table contains the 
  9. *        defined configuration sets.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE configset
  13. (
  14.     num    NUMBER(38),        /* ID of this config set */
  15.     descr    VARCHAR2(30),        /* Description of config set */
  16.     effdate    DATE DEFAULT SYSDATE,    /* Effective date */
  17.     credate DATE DEFAULT SYSDATE,    /* Creation date */
  18.     CONSTRAINT pk_configset PRIMARY KEY (num)
  19. );
  20.